<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
<head>
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<script type=
"text/javascript"
src=
"jquery.min.js"
></script>
<title>amplysoft.com</title>
</head>
<body>
<input type=
'button'
value=
'Toggle'
/>
<p>amplysoft รับเขียนเว็บ รับทำเว็บ เรียนเขียนโปรแกรม PHP, JAVA, ASP.NET</p>
<div id=
'result'
></div>
<script type=
"text/javascript"
>
$(document).ready(
function
(){
$(
'input'
).click(
function
(){
$(
'p'
).toggle(
'slow'
);
});
});
</script>
</body>
</html>